Skip to content

feat(Lorentz.Vector): mark Vector and CoVector implicit_reducible, add inner_eq_sum - #1610

Merged
zhikaip merged 4 commits into
masterfrom
vector_implicit_reducible
Sep 3, 2026
Merged

feat(Lorentz.Vector): mark Vector and CoVector implicit_reducible, add inner_eq_sum#1610
zhikaip merged 4 commits into
masterfrom
vector_implicit_reducible

Conversation

@zhikaip

@zhikaip zhikaip commented Sep 2, 2026

Copy link
Copy Markdown
Collaborator

Lorentz.Vector d and Lorentz.CoVector d are defs for Fin 1 ⊕ Fin d → ℝ and are applied directly as functions throughout the library (v μ, x (Sum.inl 0), …). Lean 4.33 enables backward.isDefEq.respectTransparency.types by default, under which such applications are not type-correct at implicit transparency (the note "function expected v μ" in error messages). Once a goal contains one under a binder, rw and simp can fail to match patterns that are visibly present. The release notes recommend marking the definitions involved @[implicit_reducible]; this PR does that for both types.

Lorentz.Vector.inner_eq_sum is added to simplify proofs previously going through equivEuclid, WithLp and PiLp.

as a result, all set_option backward.isDefEq.respectTransparency false and occurences of erw in these files can be removed

PR drafted by claude and finalised by myself

zhikaip and others added 3 commits September 2, 2026 15:40
…eq_sum

`Lorentz.Vector` and `Lorentz.CoVector` are plain `def`s applied directly
as functions throughout the library. Under Lean 4.33's
`backward.isDefEq.respectTransparency.types` such applications are not
type-correct at implicit transparency, which stops `rw`/`simp` matching
patterns containing them. Marking both `@[implicit_reducible]` is the fix
recommended by the release notes.

Adds `inner_eq_sum` for both types; `basis_inner`/`inner_basis` are
reproved from it, and the `erw`s in `basis_apply`/`basis_repr_apply`
become plain `rw`. In total 21 `respectTransparency` options become
unnecessary (2 in Vector/Basic, 19 in the Vector/CoVector tensorial,
representation and contraction files) and are removed.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
The `-Fintype.sum_sum_type` exclusions in `inner_eq_sum`, `basis_inner`
and `inner_basis` were unnecessary. `CoVector.equivEuclid_apply` mirrors
the existing `Vector.equivEuclid_apply` simp lemma, which removes the
manual `rfl` from `CoVector.inner_eq_sum`.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
The Euclidean inner product on `CoVector` has no consumers in the library,
so these lemmas were speculative API. `CoVector` keeps only the
`implicit_reducible` attribute, the `erw` removals and the docstring fix.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
@github-actions github-actions Bot added the small label Sep 2, 2026
@github-actions

github-actions Bot commented Sep 2, 2026

Copy link
Copy Markdown
Contributor

Thank you for this pull-request (PR). If this is your first PR, welcome to the community!

Below is what will happen next. Please read carefully if you are not familiar with the process. You may open other PRs while this one is being reviewed, and can stack PRs on top of each other, so don't let these steps slow you down.

  1. Some automated checks will be run on your PR. You can see the results of these checks at the buttom of your PR page. If any of these checks fail, you will need to fix the issues before your PR can be merged. You can learn more about these here, including how to run them locally, which is sometimes quicker than relying on the GitHub Actions. If you have never had a PR merged before, you may have to wait for a reviewer to manually start these checks (this is for security).

  2. A reviewer will look at your PR and may ask you to make changes. This may happen a couple of days after you submit your PR, so you may need to be patient. But it should not be longer than that - if it is please bring it to the attention of the community on the Zulip. The level of review will depend on where your PR is submitted. If it is submitted to ./Physlib or ./QuantumInfo, the review will be more thorough than if it is submitted to ./PhyslibAlpha. You can find out more about what the review process is looking for in our review guidelines. If a reviewer adds an awaiting-author label to your PR, address the review comments, then please remove that label by adding a comment with -awaiting-author. This helps us keep track of reviews.

  3. The reviewer will either approve your PR, or request more changes (in which case we return to step 2). Once your PR is approved, it will be merged by a maintainer, this should happen shortly after approval, though you may get more comments at this stage.

Tip: The easiest way to get have a fast review is to submit a PR that is small and self-contained, and has clear documentation explaining why things are the way they are in your chages.

If you have any problems or questions, please reach out to the community on the Zulip.

@github-actions github-actions Bot added the t-relativity Relativity label Sep 2, 2026
implicit-reducible lets such applications typecheck at implicit transparency, so that
`rw` and `simp` can match patterns containing them (see the Lean 4.33 release notes on
`backward.isDefEq.respectTransparency.types`). -/
attribute [implicit_reducible] Vector

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would it not be better to do

@[implicit_reducible] 
def Vector .... 

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed, wondering if it's a good idea to keep the explanation in or remove them

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Think it would be nice to keep it somewhere

@jstoobysmith jstoobysmith added the awaiting-author A reviewer has asked the author a question or requested changes label Sep 3, 2026
@zhikaip

zhikaip commented Sep 3, 2026

Copy link
Copy Markdown
Collaborator Author

-awaiting-author

@github-actions github-actions Bot removed the awaiting-author A reviewer has asked the author a question or requested changes label Sep 3, 2026

@jstoobysmith jstoobysmith left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Approved

@zhikaip
zhikaip merged commit c17844a into master Sep 3, 2026
17 checks passed
@zhikaip
zhikaip deleted the vector_implicit_reducible branch September 3, 2026 19:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants